Fix security vulnerabilities in qs and uuid dependencies#5110
Merged
Conversation
Add yarn resolutions to force minimum safe versions: - qs: ^6.15.2 (fixes CVE-2026-8723 / GHSA-q8mj-m7cp-5q26) - uuid: ^11.1.1 (fixes CVE-2026-41907 / GHSA-w5hq-g745-h8pq) Both are transitive dependencies (qs via express/body-parser, uuid via sockjs) that cannot be updated through normal version range constraints.
|
Your Vercel team React Foundation is not permitted to deploy from this git repository. Contact an administrator to add github organization facebook as a Protected Git Scope in React Foundation on Vercel. Once added, commit again to see your changes. Learn more: https://vercel.com/docs/security/protected-git-scopes |
✅ Deploy Preview for react-native ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
Author
|
@Simek can you do a pass on this one? This should solve 2 security advisory I received for the website repo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add yarn resolutions to force minimum safe versions for two vulnerable transitive dependencies:
^6.15.2— fixes CVE-2026-8723 / GHSA-q8mj-m7cp-5q26 (medium severity)^11.1.1— fixes CVE-2026-41907 / GHSA-w5hq-g745-h8pq (medium severity)Details
Both are transitive dependencies that cannot be updated through normal version range constraints:
qsis pulled in byexpress(~6.14.0) andbody-parser(~6.15.1). The resolution forces all instances to6.15.2.uuidis pulled in bysockjs(^8.3.2). The resolution forces it to11.1.1.Test Plan
yarn installcompletes without errorsyarn.lockresolvesqsto6.15.2anduuidto11.1.1